/* About Us Page Styles */

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100vw;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin-bottom: 50px;
}

/* Video Hero */
.video-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: black;
}

/* Aggressive video control hiding for mobile */
.video-hero video::-webkit-media-controls {
    display: none !important;
}

.video-hero video::-webkit-media-controls-panel {
    display: none !important;
}

.video-hero video::-webkit-media-controls-play-button {
    display: none !important;
}

.video-hero video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.video-hero video::-webkit-media-controls-overlay-play-button {
    display: none !important;
}

.video-hero video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

.video-hero video::-webkit-media-controls-timeline {
    display: none !important;
}

.video-hero video::-webkit-media-controls-current-time-display {
    display: none !important;
}

.video-hero video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

.video-hero video::-webkit-media-controls-mute-button {
    display: none !important;
}

.video-hero video::-webkit-media-controls-volume-slider {
    display: none !important;
}

/* Additional mobile video styling */
.video-hero video {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    border: none;
    pointer-events: none;
}

.video-hero video:focus {
    outline: none;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    padding: 20px 25px;
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 15px;
}

.hero-overlay p {
    font-size: 1.4rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    margin: 0;
}

/* Logo link styling */
.logo-link {
    display: block;
    text-decoration: none;
}

/* Center all text content */
body {
    text-align: center;
}

.story-content {
    text-align: center;
}

.story-text {
    text-align: center;
}

.choose-us-content {
    text-align: center;
}

.choose-us-text {
    text-align: center;
}

/* Section Styles */
.about-section {
    margin-bottom: 70px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1F3A93;
    margin-bottom: 15px;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: #1F3A93;
    margin: 0 auto;
}

.section-intro {
    width: 90%;
    margin: 20px auto 0;
    font-size: 1.2rem;
    color: #666;
}

/* Our Story Section */
.story-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.story-image {
    flex: 0.9;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 450px;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 0%;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.overlay-text {
    color: #ffd700;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
    text-align: center;
    line-height: 1.2;
    padding: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    white-space: normal;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    color: #1F3A93;
    font-size: 1.8rem;
    margin: 20px 0 15px;
}

.story-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #444;
}

/* Core Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2rem;
    color: #1F3A93;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #1F3A93;
    margin-bottom: 12px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    background-color: #fff;
}

.member-info h3 {
    font-size: 1.5rem;
    color: #1F3A93;
    margin-bottom: 5px;
}

.member-title {
    color: #1F3A93;
    font-weight: bold;
    margin-bottom: 12px;
    display: block;
}

.member-bio {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us Section */
.choose-us-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.choose-us-text {
    flex: 1.5;
}

.choose-us-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.choose-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.benefits-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
    text-align: left;
}

.benefits-list i {
    font-size: 1.5rem;
    color: #1F3A93;
    margin-top: 5px;
    flex-shrink: 0;
}

.benefits-list h3 {
    color: #1F3A93;
    font-size: 1.4rem;
    margin-bottom: 8px;
    text-align: center;
}

.benefits-list p {
    color: #666;
    line-height: 1.6;
    text-align: center;
}

/* Testimonials Section */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-quote {
    position: relative;
}

.testimonial-quote i {
    color: #ffd700;
    font-size: 2rem;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-quote p {
    font-style: italic;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    padding-left: 10px;
}

.testimonial-author {
    text-align: right;
}

.testimonial-author strong {
    display: block;
    color: #1F3A93;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background-color: #201e1f;
    padding: 60px 30px;
    border-radius: 8px;
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-button {
    background-color: #ffd700; /* Gold color */
    color: #000; /* Black text for better contrast */
    font-size: 1.2rem;
    padding: 15px 30px;
    border: 2px solid #ffd700;
    transition: all 0.3s ease;
}

.cta-section .cta-button:hover {
    background-color: transparent;
    color: #ffd700;
    transform: translateY(-5px);
}

/* Active state for nav */
nav a.active {
    color: #ffd700;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        height: 50vh;
        min-height: 300px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .story-content,
    .choose-us-content {
        flex-direction: column;
    }
    
    .story-image,
    .choose-us-image {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-overlay h1 {
        font-size: 2rem;
    }
    
    .hero-overlay p {
        font-size: 1rem;
    }
    
    .hero-overlay {
        padding: 20px 25px;
    }
    
    .overlay-text {
        font-size: 1.3rem;
        letter-spacing: 0;
        padding: 8px;
        line-height: 1.1;
        white-space: normal;
        word-break: break-word;
    }
}

/* Extra small mobile screens */
@media screen and (max-width: 480px) {
    .overlay-text {
        font-size: 1.1rem;
        letter-spacing: 0;
        padding: 5px;
        line-height: 1.1;
        white-space: normal;
        word-break: break-word;
    }
} 